home *** CD-ROM | disk | FTP | other *** search
/ Champak 119 / (Vol 119) Nov 09 2010.iso / Games / tobby_ura_ura.swf / scripts / DefineSprite_73 / frame_1 / DoAction.as
Text File  |  2010-11-09  |  399b  |  19 lines

  1. function hitCheck()
  2. {
  3.    if(this.clearFlg == true)
  4.    {
  5.       return undefined;
  6.    }
  7.    if(this.hitTest(_root.tobbyMC.hitdummyMC) == true)
  8.    {
  9.       if(_root.tobbyMC.clear() == true)
  10.       {
  11.          _root.gotoAndPlay("clear");
  12.          _parent.jellyMC.gotoAndPlay("banzai");
  13.          this.gotoAndPlay("goal");
  14.          this.clearFlg = true;
  15.       }
  16.    }
  17. }
  18. this.clearFlg = false;
  19.